home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / GNUPLOTsrc.lha / type.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-22  |  867 b   |  34 lines

  1. /* $Id: type.h,v 1.2 1994/03/22 14:26:20 alex Exp $ */
  2.  
  3. /*
  4.  *    Header file: commonly used types
  5.  *
  6.  *
  7.  *    Copyright of this module:   Carsten Grammes, 1993
  8.  *      Experimental Physics, University of Saarbruecken, Germany
  9.  *
  10.  *      Internet address: ph12hucg@rz.uni-sb.de
  11.  *
  12.  *    Permission to use, copy, and distribute this software and its
  13.  *    documentation for any purpose with or without fee is hereby granted,
  14.  *    provided that the above copyright notice appear in all copies and
  15.  *    that both that copyright notice and this permission notice appear
  16.  *    in supporting documentation.
  17.  *
  18.  *      This software is provided "as is" without express or implied warranty.
  19.  */
  20.  
  21.  
  22. #ifndef TYPE_H
  23. #define TYPE_H
  24.  
  25. #if !defined (FALSE) || !defined (TRUE)
  26. #define     FALSE   0
  27. #define     TRUE    1
  28. #endif
  29.  
  30. typedef     char         boolean;
  31. typedef     unsigned short    word;
  32.  
  33. #endif
  34.